home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 February: Tool Chest / Dev.CD Feb 95 / Dev.CD Feb 95.toast / Tool Chest / Interfaces / Universal Interfaces 2.0a3 / Universal AIncludes / Packages.a < prev    next >
Encoding:
Text File  |  1994-11-11  |  1.1 KB  |  48 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File:        Packages.a
  3. ;
  4. ;    Copyright:    © 1984-1994 by Apple Computer, Inc.
  5. ;                All rights reserved.
  6. ;
  7. ;    Version:    Universal Interfaces 2.0a3  ETO #16, MPW prerelease.  Friday, November 11, 1994. 
  8. ;
  9. ;    Bugs?:        If you find a problem with this file, send the file and version
  10. ;                information (from above) and the problem description to:
  11. ;
  12. ;                    Internet:    apple.bugs@applelink.apple.com
  13. ;                    AppleLink:    APPLE.BUGS
  14. ;
  15. ;
  16.  
  17.     IF &TYPE('__PACKAGES__') = 'UNDEFINED' THEN
  18. __PACKAGES__ SET 1
  19.  
  20.  
  21.     IF &TYPE('__TYPES__') = 'UNDEFINED' THEN
  22.     include 'Types.a'
  23.     ENDIF
  24. ;        include 'ConditionalMacros.a'                                ;
  25.  
  26. listMgr                            EQU        0                    ; list manager 
  27. dskInit                            EQU        2                    ; Disk Initializaton 
  28. stdFile                            EQU        3                    ; Standard File 
  29. flPoint                            EQU        4                    ; Floating-Point Arithmetic 
  30. trFunc                            EQU        5                    ; Transcendental Functions 
  31. intUtil                            EQU        6                    ; International Utilities 
  32. bdConv                            EQU        7                    ; Binary/Decimal Conversion 
  33. editionMgr                        EQU        11                    ; Edition Manager 
  34.  
  35.     IF GENERATING68K THEN
  36.         _InitPack:    OPWORD    $A9E5
  37.     ELSE
  38.         IMPORT    InitPack
  39.     ENDIF
  40.  
  41.     IF GENERATING68K THEN
  42.         _InitAllPacks:    OPWORD    $A9E6
  43.     ELSE
  44.         IMPORT    InitAllPacks
  45.     ENDIF
  46.  
  47.     ENDIF ; __PACKAGES__
  48.